home *** CD-ROM | disk | FTP | other *** search
- * REFS.CMD - subprogram to list the contents of REFERALS.DBF
- * This program issues 80 characters per line with no carraige returns
- * or line feeds. The terminal or printer must perform a line feed
- * every 80 characters.
-
- erase
- select primary
- GOTO TOP
- ? "Each line is:"
- ? "Record number disk number+filename description"
- ? "(hit any key to continue)"
- wait
- ?
- DO WHILE .NOT. EOF
- ?? STR(#,3)+" "+STR(DISK,2)+FILE+" "+DESCRIP
- SKIP
- ENDDO
- ? "(hit any key to continue)"
- wait
- RETURNO